home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vbxs
/
vbslider
/
vcpp
/
vcpptdoc.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1996-04-08
|
2KB
|
81 lines
// vcpptdoc.cpp : implementation of the CVcpptestDoc class
//
#include "stdafx.h"
#include "vcpptest.h"
#include "vcpptdoc.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CVcpptestDoc
IMPLEMENT_DYNCREATE(CVcpptestDoc, CDocument)
BEGIN_MESSAGE_MAP(CVcpptestDoc, CDocument)
//{{AFX_MSG_MAP(CVcpptestDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CVcpptestDoc construction/destruction
CVcpptestDoc::CVcpptestDoc()
{
// TODO: add one-time construction code here
}
CVcpptestDoc::~CVcpptestDoc()
{
}
BOOL CVcpptestDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CVcpptestDoc serialization
void CVcpptestDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CVcpptestDoc diagnostics
#ifdef _DEBUG
void CVcpptestDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CVcpptestDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CVcpptestDoc commands